home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2 - Developers' Solutions
/
Delphi 2 Developers' Solutions.iso
/
dds
/
chap08
/
howto03
/
creatabs
/
creatabs.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-01
|
197 b
|
13 lines
program CREATABS;
uses
Forms,
TABCREAT in 'TABCREAT.PAS' {CreateTableForm};
{$R *.RES}
begin
Application.CreateForm(TCreateTableForm, CreateTableForm);
Application.Run;
end.